From: Richard M. Stallman Date: Wed, 7 Apr 1993 20:25:14 +0000 (+0000) Subject: (UNBLOCK_INPUT): Fix typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96583 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=af56dc7eed8128c5ffb1d6d14d9f74637c796bfa;p=emacs.git (UNBLOCK_INPUT): Fix typo. --- diff --git a/src/blockinput.h b/src/blockinput.h index f02cb5ce85e..0571a648107 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -59,7 +59,7 @@ extern int interrupt_input_pending; #define UNBLOCK_INPUT \ (interrupt_input_blocked--, \ (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ - ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \ + ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \ ? (kill (0, SIGIO), 0) \ : 0)) #else